home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 10 / AACD 10.iso / AACD / Games / MAME / src / sound / tiaintf.h < prev    next >
C/C++ Source or Header  |  1999-09-02  |  361b  |  23 lines

  1. #ifndef tiaintf_h
  2. #define tiaintf_h
  3.  
  4. #include "sound/tiasound.h"
  5.  
  6. #define TIA_DEFAULT_GAIN 16
  7.  
  8. struct TIAinterface
  9. {
  10.     unsigned int clock;
  11.     int volume;
  12.     int gain;
  13.    int baseclock;
  14. };
  15.  
  16. int tia_sh_start (const struct MachineSound *msound);
  17. void tia_sh_stop (void);
  18. void tia_sh_update (void);
  19. void tia_w (UINT16 addr, UINT8 val);
  20.  
  21.  
  22. #endif
  23.